home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-130.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  84 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12308);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CAN-2002-0713", "CAN-2002-0715", "CVE-2002-0714");
  13.  
  14.  name["english"] = "RHSA-2002-130: squid";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   New Squid packages are available which fix various issues.
  21.  
  22.   Squid is a high-performance proxy caching server. The following summary
  23.   describes the various issues found and fixed:
  24.  
  25.   Several buffer overflows have been found in the MSTN auth helper
  26.   (msnt_auth) when configured to use denyusers or allowusers access control
  27.   files.
  28.  
  29.   Several buffer overflows were found in the gopher client of Squid. It
  30.   could be possible for a malicious gopher server to cause Squid to crash.
  31.  
  32.   A problem was found in the handling of the FTP data channel, possibly
  33.   allowing abuse of the FTP proxy to bypass firewall rules or inject false
  34.   FTP replies.
  35.  
  36.   Several possible buffer overflows were found in the code parsing FTP
  37.   directories, which potentially allow for an untrusted FTP server to crash
  38.   Squid.
  39.  
  40.   Thanks go to Olaf Kirch and the Squid team for notifying us of the
  41.   problems and to the Squid team for providing patches.
  42.  
  43.   All users of Squid are advised to upgrade to these errata packages which
  44.   contain patches to correct each of these issues.
  45.  
  46.  
  47.  
  48.  
  49. Solution : http://rhn.redhat.com/errata/RHSA-2002-130.html
  50. Risk factor : High';
  51.  
  52.  script_description(english:desc["english"]);
  53.  
  54.  summary["english"] = "Check for the version of the squid packages";
  55.  script_summary(english:summary["english"]);
  56.  
  57.  script_category(ACT_GATHER_INFO);
  58.  
  59.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  60.  family["english"] = "Red Hat Local Security Checks";
  61.  script_family(english:family["english"]);
  62.  
  63.  script_dependencies("ssh_get_info.nasl");
  64.  
  65.  script_require_keys("Host/RedHat/rpm-list");
  66.  exit(0);
  67. }
  68.  
  69. include("rpm.inc");
  70. if ( rpm_check( reference:"squid-2.4.STABLE6-6.7.3", release:"RHEL2.1") )
  71. {
  72.  security_hole(0);
  73.  exit(0);
  74. }
  75.  
  76. if ( rpm_exists(rpm:"squid-", release:"RHEL2.1") )
  77. {
  78.  set_kb_item(name:"CAN-2002-0713", value:TRUE);
  79.  set_kb_item(name:"CAN-2002-0715", value:TRUE);
  80.  set_kb_item(name:"CVE-2002-0714", value:TRUE);
  81. }
  82.  
  83. set_kb_item(name:"RHSA-2002-130", value:TRUE);
  84.